home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / idle / autolog-.000 / autolog- / autolog-0.31 / Makefile < prev    next >
Makefile  |  1995-08-12  |  137b  |  13 lines

  1. CC    = gcc
  2. CFLAGS    =
  3.  
  4.  
  5. autolog:    autolog.c
  6.     $(CC) $(CFLAGS) -o autolog autolog.c
  7.  
  8. install:    autolog
  9.     cp autolog /usr/sbin
  10.  
  11. clean:
  12.     rm autolog
  13.